home *** CD-ROM | disk | FTP | other *** search
- /*
- **
- ** savemessage.thor - save a message. Will fail if CURRENT is given and there's no current
- ** message.
- **
- ** Will return 10 on failure and 0 on success.
- **
- ** Template:
- **
- ** BBSNAME=BBS,CONFNAME=CONF,MSGNUMBER=MSGNR/N,CURRENT/S,FILENAME=FILE,CLIPBOARD=CLIP/S,
- ** NOHEADER/S
- */
-
- address THOR.01
-
- /* Save the current message to a file without a header*/
-
- SAVEMESSAGE CURRENT FILENAME '"ram:test"' NOHEADER
-
- /* Save message number 2401 on the given BBS and the given conference to a file */
-
- SAVEMESSAGE BBSNAME '"Ultima Thule BBS"' CONFNAME '"Post"' MSGNR 2401 FILENAME '"ram:test2"'
-
- /* Save the current message to the clipboard without a header*/
-
- SAVEMESSAGE CURRENT CLIPBOARD NOHEADER
-
- /* Save message number 2401 on the given BBS and the given conference to the clipboard */
-
- SAVEMESSAGE BBSNAME '"Ultima Thule BBS"' CONFNAME '"Post"' MSGNR 2401 CLIPBOARD
-
-